/*通用样式*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #666666;
}

html {
    font-size: 100px; /*方便用rem*/
    font-family: 'Microsoft Yahei',sans-serif;
    /*font-family: "NotoSansHans-Thin-Windows";*/
    outline: 0;
    -webkit-text-size-adjust: none; /*字体小于12px时候，依然用12px*/
}

body {
    width: 100%;
    margin: 0;
    /*-webkit-user-select: none;*/
    position: relative;
    background-color: #fff;
    overflow-y: scroll;
}

input {
    border: none;
    /*有一些手机需要用下面的来去除扁平化*/
    -webkit-appearance: none;
}

a {
    /*去掉下划线*/
    text-decoration: none;
}

fieldset,
img,
input,
button,
textarea {
    /*fieldset组合表单中的相关元素*/
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
    vertical-align: middle;
}

button {
    background-color: transparent;
}

img {
    border: 0;
    vertical-align: middle;
}

ol, ul {
    list-style: none;
}

/*.fl{*/
/*float: left;*/
/*}*/
/*.fr{*/
/*float: right;*/
/*}*/
.clearfix::before,
.clearfix::after {
    content: "";
    display: block;
    line-height: 0;
    height: 0;
    visibility: hidden;
    clear: both;
}

input:focus {
    outline: none;
}

select:focus {
    outline: none;
}

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
}

textarea {
    resize: none;
}

textarea:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

s,
i,
em {
    font-style: normal;
    text-decoration: none;
}

.w {
    width: 12rem;
    margin: 0 auto;
}

input[type=number]::-webkit-inner-spin-button {
    display: none;
}

input[type=date]::-webkit-inner-spin-button {
    display: none;
}